diff --git a/swh/web/ui/templates/symbols.html b/swh/web/ui/templates/symbols.html index 40413321..0e3bb14e 100644 --- a/swh/web/ui/templates/symbols.html +++ b/swh/web/ui/templates/symbols.html @@ -1,76 +1,78 @@ {% extends "layout.html" %} {% block title %}Search SWH{% endblock %} {% block content %}
{% include 'includes/search-form.html' %} {% if result is not none %}
{% for res in result %} {% endfor %}
name content kind language
name content kind language
{{ res['name'] | truncate(50) }} {{ res['sha1'] }} {{ res['kind'] }} {{ res['lang'] }}
{% if linknext is not none and linknext != '' %}
Next {% endif %} {% endif %} {% if message is not none and message != '' %}
{{ message | safe }}
{% endif %}
{% endblock %}